home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue68 / sync / filesync.bpg < prev    next >
Encoding:
Borland Project Group  |  2001-02-28  |  1017 b   |  37 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = FileGroupApp.exe FileGroupAdmin.exe Ping.exe Pong.exe Send.exe \
  13.   Receive.exe
  14. #------------------------------------------------------------------------------
  15. default: $(PROJECTS)
  16. #------------------------------------------------------------------------------
  17.  
  18. FileGroupApp.exe: FileGroupApp.dpr
  19.   $(DCC)
  20.  
  21. FileGroupAdmin.exe: FileGroupAdmin.dpr
  22.   $(DCC)
  23.  
  24. Ping.exe: Ping.dpr
  25.   $(DCC)
  26.  
  27. Pong.exe: Pong.dpr
  28.   $(DCC)
  29.  
  30. Send.exe: Send.dpr
  31.   $(DCC)
  32.  
  33. Receive.exe: Receive.dpr
  34.   $(DCC)
  35.  
  36.  
  37.